Skip to main content

Authenticated Request Fields

Requests made to the RDA Admin web service must include JHA-provided credentials for authentication. Each request has a field named Credentials which is of type StoreCredentials. Store credentials are only used for administrative functions in the Admin web service for RDA, for example; enrolling users, updating risk, adding accounts etc. StoreCredentials has the following fields which must be assigned the JHA-provided credential values.

NameDescription
EntityIdA unique int32 value corresponding to the FI’s RDA merchant in the EPS system. Also known as MID. EPS will provide this.
StoreIdA unique int64 web service user ID systematically generated corresponding to the FI RDA merchant. EPS will provide this.
StoreKeyA unique string value password systematically generated upon installing a web service user ID. The password corresponds with the StoreID. EPS will provide this.

Below is example code for creating the StoreCredentials.

C# Example

new StoreCredentials
{
EntityId = 12345,
StoreId = 1111,
StoreKey = "12312312312312"
}